home *** CD-ROM | disk | FTP | other *** search
/ Font Pro 5: Fun Type / Font Pro 5 - Fun Type (Wayzata Technology)(1995).bin / advanced / builder / help / fp5help.ps < prev    next >
Text File  |  1995-12-11  |  2KB  |  48 lines

  1. %!
  2. % PostScript program for distilling and combining multiple PostScript files.
  3. % When embedding font subsets, it is highly recommended you use this technique
  4. % to distill multiple PS files so only one font subset is used for each font.
  5.  
  6. /prun { /mysave save def       % Performs a save before running the PS file
  7.         dup = flush            % Shows name of PS file being run
  8.         RunFile                % Calls built in Distiller procedure
  9.         clear cleardictstack   % Cleans up after PS file
  10.         mysave restore         % Restores save level
  11. } def
  12.  
  13.  
  14. (Macintosh HD:help:intro.txt.ps) prun
  15. (Macintosh HD:help:CAP-3.BMP) prun
  16. (Macintosh HD:help:showpage.ps) prun
  17. (Macintosh HD:help:CAP-5.BMP) prun
  18. (Macintosh HD:help:showpage.ps) prun
  19. (Macintosh HD:help:CAP-7.BMP) prun
  20. (Macintosh HD:help:showpage.ps) prun
  21. (Macintosh HD:help:CAP-8.BMP) prun
  22. (Macintosh HD:help:showpage.ps) prun
  23. (Macintosh HD:help:CAP-10.BMP) prun
  24. (Macintosh HD:help:showpage.ps) prun
  25. (Macintosh HD:help:CAP-12.BMP) prun
  26. (Macintosh HD:help:showpage.ps) prun
  27.  
  28.  
  29. % INSTRUCTIONS
  30. %
  31. % 1. Locate all PostScript files to be distilled.
  32. %
  33. % 2. Make a copy of this file and give it the name you want to have as the prefix
  34. %    for the resulting file. For example, you could name this file MyBook.ps. 
  35. %
  36. % 3. Include a line for each PostScript file to be run using the pathname syntax
  37. %    appropriate for the platform running Acrobat Distiller. 
  38. %
  39. %       Macintosh pathname syntax:  (Macintosh HD:Folder:File.ps) prun
  40. %       Windows pathname syntax:    (c:\\\\mydir\\\\file.ps) prun
  41. %
  42. %       Note: The syntax for Windows may look strange, but double escaping the
  43. %             backslash character is required when using filenameforall.
  44. %
  45. % 4. Distill the file on the machine running Acrobat Distiller.
  46.  
  47.  
  48.